* NEWS: 62-bit integers are typical now.
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 3 Jun 2011 18:42:04 +0000 (11:42 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 3 Jun 2011 18:42:04 +0000 (11:42 -0700)
etc/ChangeLog
etc/NEWS

index 32335e09e769dbcd3b60f507268f284771623b3e..c7f0c7c2100e1c42c2ec57d3209a0341aaa5355a 100644 (file)
@@ -1,3 +1,7 @@
+2011-06-03  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * NEWS: 62-bit integers are typical now.
+
 2011-05-24  Leo Liu  <sdl.web@gmail.com>
 
        * NEWS: Mention the new primitive sha1 and the removal of sha1.el.
index 25fd259eb9a9a03dd90cba5cac4ab779618c53df..265812022847cd2d900ccda5642ed753ef2d9dc0 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -902,6 +902,14 @@ of function value which looks like (closure ENV ARGS &rest BODY).
 *** New function `special-variable-p' to check whether a variable is
 declared as dynamically bound.
 
+** Emacs integers have a wider range on typical 32-bit hosts.
+Previously, they were limited to a 30-bit range (-2**29 .. 2**29-1).
+Now, they are limited to a 62-bit range (-2**61 .. 2**61-1), the
+same as on 64-bit hosts.  This increased range comes from the Emacs
+interpreter using 64-bit native integer types that are available
+on typical modern 32-bit platforms.  Older 32-bit hosts that lack
+64-bit integers have the same 30-bit range as before.
+
 ** pre/post-command-hook are not reset to nil upon error.
 Instead, the offending function is removed.